home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
pmode
/
code32
/
strlen.rt
< prev
next >
Wrap
Text File
|
1993-01-08
|
477b
|
22 lines
public _strlen
;░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
; Get length of ASCIIZ string
; In:
; EDX -> string
; Out:
; EAX - length
;░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
_strlen:
push ecx
push edi
mov edi,edx
mov ecx,-1
xor al,al
repnz scasb
mov eax,-2
sub eax,ecx
pop edi
pop ecx
ret